home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Special 16
/
AMIGAplus Sonderheft 16 (1998)(ICP)(DE)[!].iso
/
rexx
/
example.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1998-12-04
|
339b
|
24 lines
/* $VER: Test ViewTool's ARexx Port
*/
OPTIONS RESULTS
ADDRESS 'ViewToolRexx'
LOADIMAGE 'X:Clown.pic'
res1 = RC
res2 = RESULT
IF res1 = 0 THEN
DO
SAY 'Image loaded successfully'
CLOSEIMAGE res2
END
ELSE
DO
SAY 'result =' res1
SAY 'result2 =' res2
END
EXIT(0)